home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 47.7z / BS1 part 47 / Super Methane Bros CD32 (1994)(Apache)(AGA)[cr B&B][CD32 rip].7z / Super Methane Bros CD32 (1994)(Apache)(AGA)[cr B&B][CD32 rip].adf / BROS_INSTALL < prev    next >
Text File  |  1994-03-01  |  1KB  |  52 lines

  1. cd >env:CurrentDir
  2. setenv    Title    SUPER METHANE BROTHERS AGA/CD32 Installation
  3. setenv    BB1    To start the installation of this game, you need to specify*n
  4. setenv    BB2     a directory in which this game will be placed. A drawer*n
  5. setenv    BB3    called 'Bros' will be created in the directory you select
  6. requestchoice >env:BOLDIS "$Title" "$BB1 $BB2 $BB3" "Continue|Abort"
  7.  
  8. IF $BOLDIS VAL EQ 0
  9.     skip    abort
  10. ENDIF
  11.  
  12. requestfile >env:Dest TITLE "Select a directory to install into" DRAWER "sys:" DRAWERSONLY NOICONS POSITIVE "Install"
  13. IF WARN
  14.     skip    abort
  15. ENDIF
  16.  
  17. cd $Dest
  18. cd >env:ParentDir
  19. IF NOT EXISTS Bros
  20.     makedir Bros
  21. ENDIF
  22. cd Bros
  23. cd >env:Destination
  24. cd $CurrentDir
  25.  
  26. cd $Destination
  27. copy Boldies:#? ALL $destination
  28. cd    $ParentDir
  29. rename Bros/brosicon bros.info
  30. delete bros/bros_install
  31. delete bros/bros_install.info
  32. cd    $CurrentDir
  33. skip exit
  34.  
  35. lab exit
  36. setenv    Title    BROS Installation
  37. setenv    BB1    Installation completed.
  38. requestchoice >env:BOLDIS    "$Title" "$BB1" "End"
  39.  
  40. lab    abort
  41. quit
  42.  
  43. unsetenv    Title
  44. unsetenv    BB1
  45. unsetenv    BB2
  46. unsetenv    BB3
  47. unsetenv    BOLDIS
  48. unsetenv    Dest
  49. unsetenv    Destination
  50. unsetenv    CurrentDir
  51. unsetenv    ParentDir
  52.